@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400;500;600;700&display=swap');

:root {
    --blue: #1e90ff;
    --hover: #49a4ff;
    --white: #ffffff;
}

@media (max-width: 767px) {
    .button-list{
        flex-direction: column;
        align-items: center;
    }

    
}



body {
    font-family: 'El Messiri', sans-serif;
    margin: 0;
    direction: rtl;
}

header {
    display: flex;
    align-items: center;
    background-color: var(--blue);
    color: #fff;
    padding: 0.5em;
    justify-content: space-evenly;
}


#logo {
    height: 80px;
    margin-right: 1em;
}

header div {
    text-align: right;
    margin-right: 20px;
}


header h2 {
    margin: 0;
}

.hero {
    background-color: #747474;
    background-image: url(../img/libraries3.png);
    background-size: cover;
    background-blend-mode: multiply;
    color: white;
    text-align: center;
    padding-top: 120px;
    padding-bottom: 120px;
}

.section-text{
    text-align: center;
    color: rgb(36, 36, 36);
}

.button-list {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 20px;
    background-color: whitesmoke;
}

a {
    color: #337ab7;
    text-decoration: none;
}

.button {
    
    font-family: 'El Messiri', sans-serif;
    background-color: var(--blue);
    border: none;
    color: white;
    padding: 10px 5px 5px 0;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 14px;
    margin: 5px;
    width: 200px;
    height: 200px;
}

.button:hover {
    background-color: var(--hover);
    cursor: pointer;
}

.button-image {
    max-width: 70%;
    max-height: 70%;
}



.button-title {
    margin: 0;
    padding: 0;
    font-size: 24px;
    transform: translate(0px, 5px);
}



footer {
    background-color: var(--blue);
    color: #fff;
    padding: 1em;
    text-align: center;
}